home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
umich
/
telecomm
/
fnordadl
/
fn132src.zoo
/
cith
/
modem.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-09-02
|
593b
|
26 lines
/*
* modem.h -- defines and stuff for dealing with the modem in Fnordadel
*
* 91Apr29 AA Extracted from ctdl.h and elsewhere
*/
#ifndef _MODEM_H
#define _MODEM_H
/*
* modem stuff:
*
* If you change the number of baud rates supported here, you need to
* modify the mCCs strings in struct config, findBaud(), and grabCC()
* in SYSDEP.C, and setBaud() in LIBDEP.C
*/
#define NUMBAUDS 5
#define ONLY_300 0 /* 300 baud only */
#define UPTO1200 1 /* +1200 baud */
#define UPTO2400 2 /* +2400 baud */
#define UPTO9600 3 /* +9600 baud */
#define UPTO19200 4 /* +19200 baud */
#endif